home *** CD-ROM | disk | FTP | other *** search
- "FILE"="Xteq Systems X-Setup Plugin 3.1"
- "TYPE"="5"
- "COUNT"="1"
- "UIPATH"="Internet\Internet Explorer\Troubleshooting"
- "NAME"="Channel Bar Position"
- "VERSION"="2.00"
- "LANGUAGE"="VBScript"
- "TEXT 1"="Correct Channel Bar Position"
- "DESCRIPTION 1"="If your Channel Bar is missing, the position of it is maybe not correct. Click the first button to correct this."
- "AUTHOR"="Xteq Systems"
- "CONTACTURL"="http://www.xteq.com"
- "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
- "COMMENT 1"=" "
- "COMMENT 2"="Thanks to Ojatex for his help!"
-
-
- sPCheck="HKCU\Software\Microsoft\Internet Explorer\"
-
- sV1="HKCU\Software\Microsoft\Internet Explorer\Channels\Window_Placement"
-
-
- Sub Plugin_Initialize
- If RegPathExists(sPCheck) then
- 'do nothing???
- else
- Disable
- end if
- End Sub
-
- Sub Plugin_CheckData(ElementIndex)
- End Sub
-
- Sub Plugin_Apply(ElementIndex,ElementSubIndex)
- If ElementIndex=1 then
- s=RegReadValue(sV1)
-
- If IsEmpty(s)=false then
- Call RegDeleteValue(sV1)
- end if
-
- Call MsgInformation("Corrected")
- end if
-
-
- End Sub
-
- Sub Plugin_Terminate
- End Sub
-